home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- global interdirection
- case the frame of
- "2", "10", "18", "26", "34", "42", "50", "58", "66":
- frameactions()
- end case
- end
-
- on exitFrame
- global interdirection
- if rollOver(35) or rollOver(36) or rollOver(37) or rollOver(38) or rollOver(39) then
- cursor([38, 39])
- else
- cursor(-1)
- end if
- if interdirection = 0 then
- go(the frame)
- else
- if interdirection = 1 then
- go(the frame - 1)
- else
- if interdirection = 2 then
- go(the frame + 1)
- else
- go(the frame)
- end if
- end if
- end if
- end
-